home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pr42sdk / examples / projects / export / ex-vxx.rc < prev    next >
Encoding:
Text File  |  1995-10-07  |  876 b   |  46 lines

  1. //========================================================================================
  2. //
  3. // Ex-vxx.rc - Video export plugin for Premiere.
  4. //
  5. // Part of the Adobe Premiere 4.2 Plug-in Developer's Toolkit.
  6. //
  7. // Copyright 1996, Adobe Systems Incorporated, all rights reserved worldwide.
  8. //
  9. //========================================================================================
  10.  
  11. #include <windows.h>
  12. #include "Fourcc.h"
  13. #include "Premiere.h"
  14.  
  15.  
  16. 1000    TYPE    DISCARDABLE
  17. BEGIN
  18.     0x0000,
  19.     ExpDtype,
  20. END
  21.  
  22. 1000    TEXT    DISCARDABLE
  23. BEGIN
  24.     0x0000,
  25.     "VXX File (SDK)\0"
  26. END
  27.  
  28.  
  29. // This identifies the type of data the exporter can handle
  30. // Valid values are:
  31. //
  32. // mExpVid        Can export video/still image data
  33. // mExpAud        Can export audio data
  34.  
  35. 1000    FLAG    DISCARDABLE
  36. BEGIN
  37.     0x0000,
  38.     mExpVid
  39. END
  40.  
  41. 1000    EXvs    DISCARDABLE
  42. BEGIN
  43.     0x0000,
  44.     0x0002
  45. END
  46.